home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap17 / dun17_9.txt < prev   
Encoding:
Text File  |  1997-12-18  |  198 b   |  10 lines

  1. function inputNumbers(event)
  2.  
  3. {
  4.  
  5.   // The ASCII value for '0' is 48 and for
  6.  
  7.   // '9' is 57.
  8.  
  9.   if (event.which >= 48 && event.which <= 57)
  10.  
  11.     return true;
  12.  
  13.   else
  14.  
  15.     return false;
  16.  
  17. }
  18.  
  19.